added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2010 / VBCpuUsage / CpuUsageValueArrayChangedEventArg.vb
blob0db420612e1cc20593ded07b8d261dff349fc790
1 '************************** Module Header ******************************'
2 ' Module Name: CpuUsageValueArrayChangedEventArg.vb
3 ' Project: VBCpuUsage
4 ' Copyright (c) Microsoft Corporation.
5 '
6 ' The event arguments used in the CpuUsageValueArrayChanged event of the
7 ' CpuUsageMonitorBase class.
8 '
9 '
10 ' This source is subject to the Microsoft Public License.
11 ' See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
12 ' All other rights reserved.
14 ' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
15 ' EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
16 ' WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
17 '************************************************************************'
19 Public Class CpuUsageValueArrayChangedEventArg
20 Inherits EventArgs
21 Public Property Values() As Double()
22 End Class